crypto/elliptic/internal/nistec.P224Point.y (field)
21 uses
crypto/elliptic/internal/nistec (current package)
p224.go#L30: x, y, z *fiat.P224Element
p224.go#L37: y: new(fiat.P224Element).One(),
p224.go#L46: y: new(fiat.P224Element),
p224.go#L54: p.y.Set(q.y)
p224.go#L83: p.y.Set(y)
p224.go#L133: yy := new(fiat.P224Element).Mul(p.y, zinv)
p224.go#L147: t1 := new(fiat.P224Element).Mul(p1.y, p2.y) // t1 := Y1 * Y2
p224.go#L149: t3 := new(fiat.P224Element).Add(p1.x, p1.y) // t3 := X1 + Y1
p224.go#L150: t4 := new(fiat.P224Element).Add(p2.x, p2.y) // t4 := X2 + Y2
p224.go#L154: t4.Add(p1.y, p1.z) // t4 := Y1 + Z1
p224.go#L155: x3 := new(fiat.P224Element).Add(p2.y, p2.z) // X3 := Y2 + Z2
p224.go#L191: q.y.Set(y3)
p224.go#L202: t1 := new(fiat.P224Element).Square(p.y) // t1 := Y ^ 2
p224.go#L204: t3 := new(fiat.P224Element).Mul(p.x, p.y) // t3 := X * Y
p224.go#L228: t0.Mul(p.y, p.z) // t0 := Y * Z
p224.go#L237: q.y.Set(y3)
p224.go#L245: q.y.Select(p1.y, p2.y, cond)